home *** CD-ROM | disk | FTP | other *** search
-
-
-
- MMMMPPPPIIII____PPPPRRRROOOOBBBBEEEE((((3333)))) MMMMPPPPIIII____PPPPRRRROOOOBBBBEEEE((((3333))))
-
-
-
- NNNNAAAAMMMMEEEE
- MMMMPPPPIIII____PPPPrrrroooobbbbeeee - Provides a blocking test for a message
-
- SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
- C:
-
- #include <mpi.h>
-
- int MPI_Probe( _s_o_u_r_c_e, _t_a_g, _c_o_m_m, _s_t_a_t_u_s )
- int _s_o_u_r_c_e;
- int _t_a_g;
- MPI_Comm _c_o_m_m;
- MPI_Status *_s_t_a_t_u_s;
-
-
- C++:
-
- #include <mpi.h>
-
- void Comm::Probe(
- int _s_o_u_r_c_e,
- int _t_a_g) const
-
-
- Fortran:
-
- INCLUDE "mpif.h" (or USE MPI)
-
- INTEGER _s_o_u_r_c_e, _t_a_g, _c_o_m_m, _s_t_a_t_u_s(MPI_STATUS_SIZE), _i_e_r_r_o_r
-
- CALL MPI_PROBE(_s_o_u_r_c_e, _t_a_g, _c_o_m_m, _s_t_a_t_u_s(MPI_STATUS_SIZE), _i_e_r_r_o_r)
-
-
- SSSSTTTTAAAANNNNDDDDAAAARRRRDDDDSSSS
- This release implements the MPI 1.2 standard, as documented by the MPI
- Forum in the spring 1997 release of _M_P_I: _A _M_e_s_s_a_g_e _P_a_s_s_i_n_g _I_n_t_e_r_f_a_c_e
- _S_t_a_n_d_a_r_d.
-
- DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
- The MMMMPPPPIIII____PPPPrrrroooobbbbeeee routine provides a blocking test for a message. This
- routine accepts the following parameters:
-
- _s_o_u_r_c_e Specifies a source rank or MMMMPPPPIIII____AAAANNNNYYYY____SSSSOOOOUUUURRRRCCCCEEEE (integer)
-
- _t_a_g Specifies a tag value or MMMMPPPPIIII____AAAANNNNYYYY____TTTTAAAAGGGG (integer)
-
- _c_o_m_m Specifies the communicator (handle)
-
- _s_t_a_t_u_s Returns the status object (status)
-
-
-
-
-
-
- PPPPaaaaggggeeee 1111
-
-
-
-
-
-
- MMMMPPPPIIII____PPPPRRRROOOOBBBBEEEE((((3333)))) MMMMPPPPIIII____PPPPRRRROOOOBBBBEEEE((((3333))))
-
-
-
- _i_e_r_r_o_r Specifies the return code value for successful completion,
- which is in MPI_SUCCESS. MPI_SUCCESS is defined in the mmmmppppiiiiffff....hhhh
- file.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PPPPaaaaggggeeee 2222
-
-
-
-